* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

:root {
    --primary: #1a5f7a;
    --secondary: #57cc99;
    --accent: #ff9a3c;
    --light: #f8f9fa;
    --dark: #2d3436;
    --gray: #6c757d;
    --border: #eaecf0;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.apply-section-logo {
      width: 180px;
    height: 180px;

    padding: 5px;

    border-radius: 50%;
    overflow: hidden;

    margin: 0 auto 25px;

    background: linear-gradient(
        135deg,
        #1a5f7a,
        #57cc99,
        #ff9a3c,
        #845ec2
    );

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.apply-section-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #fff;
}

/* =========================================================
   COLORFUL APPLY NOW SECTION
========================================================= */

.apply-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 20%, rgba(87, 204, 153, 0.20), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(255, 154, 60, 0.20), transparent 25%),
        radial-gradient(circle at 80% 90%, rgba(132, 94, 194, 0.15), transparent 25%),
        linear-gradient(135deg, #e8f9ff, #effff7, #fff3e7);
}


/* Decorative background shapes */

.apply-section::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(87, 204, 153, 0.12);

    top: -80px;
    left: -70px;
}

.apply-section::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255, 154, 60, 0.12);

    bottom: -70px;
    right: -50px;
}


/* =========================================================
   TITLE
========================================================= */

.apply-section .section-title-bar {
    position: relative;
    z-index: 2;

    text-align: center;

    margin-bottom: 60px;
}

.apply-section .section-subtitle {
    display: block;

    color: #ff7a00;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.apply-section .section-title {
    font-size: 42px;
    font-weight: 800;

    background: linear-gradient(90deg,
            #1a5f7a,
            #57cc99,
            #845ec2,
            #ff9a3c);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.apply-wrapper {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 35px;

    align-items: stretch;
}


/* =========================================================
   LEFT APPLICATION CARD
========================================================= */

.apply-content {
    position: relative;
    overflow: hidden;

    padding: 55px;

    border-radius: 28px;

    background: linear-gradient(135deg,
            #1a5f7a 0%,
            #168aad 45%,
            #57cc99 100%);

    color: #ffffff;

    box-shadow:
        0 20px 45px rgba(26, 95, 122, 0.25);
}


/* Decorative circles */

.apply-content::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    top: -90px;
    right: -70px;
}

.apply-content::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background: rgba(255, 154, 60, 0.22);

    bottom: -70px;
    left: -50px;
}


/* Graduation Icon */

.apply-icon {
    position: relative;
    z-index: 2;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(135deg,
            #ff9a3c,
            #ff6b6b);

    color: #ffffff;

    font-size: 32px;

    margin-bottom: 25px;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.16);
}


/* Heading */

.apply-content h2 {
    position: relative;
    z-index: 2;

    color: #ffffff;

    font-size: 35px;

    line-height: 1.2;

    margin-bottom: 20px;
}


/* Paragraph */

.apply-content>p {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.90);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* =========================================================
   FEATURES
========================================================= */

.apply-features {
    position: relative;
    z-index: 2;
}


.apply-features div {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    padding: 10px 12px;

    border-radius: 10px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);

    transition: 0.3s;
}


.apply-features div:hover {
    background: rgba(255, 255, 255, 0.20);

    transform: translateX(6px);
}


.apply-features i {
    color: #ffe082;

    font-size: 18px;
}


/* =========================================================
   A3 PROGRESSIVE BASIC ACADEMY
   PREMIUM APPLICATION SECTION
   ========================================================= */

.application-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f4fbff 0%, #ffffff 50%, #f1fff8 100%);
    overflow: hidden;
}

/* Decorative circles */
.application-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #57cc99;
    opacity: 0.08;
    top: -150px;
    left: -150px;
}

.application-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #1a5f7a;
    opacity: 0.08;
    right: -120px;
    bottom: -120px;
}


/* ================= CONTAINER ================= */

.application-section .container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* ================= MAIN CARD ================= */

.application-form-container {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.8);
}


/* ================= HEADING ================= */

.application-form-container h2 {
    text-align: center;
    color: #1a5f7a;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.application-form-container > p {
    text-align: center;
    color: #6c757d;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}


/* ================= FORM ROW ================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}


/* ================= FORM GROUP ================= */

.form-group {
    margin-bottom: 22px;
}


/* ================= LABEL ================= */

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3436;
    font-size: 14px;
    font-weight: 700;
}


/* ================= INPUTS ================= */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;

    border: 2px solid #e8eef1;
    border-radius: 13px;

    background: #f9fcfd;
    color: #2d3436;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: 0.3s ease;
}


/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa4ad;
}


/* Focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.09);
}


/* Select */
.form-group select {
    cursor: pointer;
}


/* Textarea */
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}


/* ===============================
   SUBMIT APPLICATION BUTTON
   =============================== */

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 28px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.3s ease;

    cursor: pointer;
}


/* Submit Application */
.apply-btn {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #ff9a3c,
        #ff6f00
    );

    border: 2px solid #ff9a3c;

    box-shadow:
        0 10px 25px rgba(255, 122, 0, 0.25);
}


/* Hover Effect */
.apply-btn:hover {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #57cc99,
        #1a5f7a
    );

    border-color: #57cc99;

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(26, 95, 122, 0.30);
}


/* Icon */
.apply-btn i {
    font-size: 16px;

    transition: transform 0.3s ease;
}


/* Move icon on hover */
.apply-btn:hover i {
    transform: translateX(4px);
}


/* ===============================
   MOBILE
   =============================== */

@media (max-width: 600px) {

    .hero-btn {
        padding: 13px 20px;

        font-size: 13px;

        gap: 8px;
    }

    .apply-btn i {
        font-size: 14px;
    }

}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .application-form-container {
        padding: 40px 30px;
    }

    .application-form-container h2 {
        font-size: 32px;
    }

}


@media (max-width: 700px) {

    .application-section {
        padding: 70px 0;
    }

    .application-section .container {
        width: 94%;
    }

    .application-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .application-form-container h2 {
        font-size: 27px;
    }

    .application-form-container > p {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 15px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 14px;
    }

}


